[USER (data scientist)]: Awesome! Now, I need to preprocess the categorical columns. Can you apply Label Encoding to 'savings_status' and 'employment', and One-Hot Encoding to 'credit_history'? Please generate the code with the output in dataframe type.
My template of code snippet is:

---BEGIN CODE TEMPLATE---

import pandas as pd  
from sklearn.preprocessing import LabelEncoder 
import pickle
from decision_company import read_csv_file, col_assign_val, create_label_encoder, fit_transform_label_encoder, get_dummies

# Load the dataset  
credit_customers = read_csv_file("credit_customers.csv")  

# YOUR SOLUTION BEGIN:
<code1>
[GENERATE YOUR CODE]  
</code1>
# YOUR SOLUTION END

print("data_for_clustering:\n", data_for_clustering)    

# save data
pickle.dump(data_for_clustering,open("./pred_result/data_for_clustering.pkl","wb"))

---END CODE TEMPLATE---

[YOU (AI assistant)]: Of course! Here's the code to preprocess the categorical columns:

# MY SOLUTION BEGIN:
